    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:  'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #60619f;
             background:  linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%)!important;
            min-height: 100vh;
        }

        .container {
            max-width: 1500px !important;
            margin: 0 auto;
            padding: auto;
        }

        /* Article Container */
        .article-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 0px;
            margin: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 0;
            padding: auto;
        }

        /* Hero Section */
         .hero{
        position: relative;
        background-image: url('../../img/blogs/blog1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 60px;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .hero.overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.45); /* Adjust opacity as needed */
        z-index: 1;
    }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-meta {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        /* Main Content */
        .content {
            padding: 3rem 2rem 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro-text {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .section {
            margin-bottom: 0rem;
        }

        .section h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            border-radius: 2px;
        }

        .section h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        .section p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Alert Box */
        .alert-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            color: #78350f;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .alert-box::before {
            content: '⚠️';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
        }

        .alert-box h3 {
            color: #78350f;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .alert-box p {
            color: #78350f;
            margin-bottom: 1rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

       
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Architecture Features */
        .architecture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .architecture-item {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(30, 58, 138, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

            .architecture-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
        }

        .architecture-icon {
            display: inline-block;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .architecture-item h4 {
            color: #333;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .architecture-item p {
            color: #666;
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Success Stories */
        .success-stories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .success-story {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
        }

        .success-story::before {
            content: '📈';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
        }

        .success-story h4 {
            color: #14532d;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .success-story p {
            color: #166534;
            margin-bottom: 1rem;
        }

        .success-metric {
           background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            color: #14532d;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.9rem;
        }
        /* Mobile view  */
        @media (max-width: 768px) {
        .success-stories {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 1rem; /* Smaller gap between cards */
            margin: 1rem 0;
        }

        .success-story {
            padding: 1.2rem;
            border-radius: 10px;
        }

        .success-story h4 {
            font-size: 1.1rem; /* Slightly smaller heading */
        }

        .success-story p {
            font-size: 0.9rem; /* Easier to read on mobile */
        }

        .success-metric {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
            .success-story::before {
            font-size: 1.2rem; /* Smaller icon */
            top: 0.8rem;
            right: 0.8rem;
        }
        }


        /* Framework Benefits */
        .framework-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .framework-benefit {
              background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            border: 1px solid rgba(236, 72, 153, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .framework-benefit::before {
            content: '🚀';
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }

        .framework-benefit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
        }

        .framework-benefit h4 {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .framework-benefit p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

         /* CTA Section */
        .cta-section {
              background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            margin: 4rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
           color: #1976d2;
        }

        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 2rem auto;
            color: #555;
        }

       /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .hero-meta { flex-direction: column; gap: 1rem; }
            .content { padding: 2rem 1rem; }
            .section h2 { font-size: 2rem; }
            .failure-points-grid { grid-template-columns: 1fr; }
            .action-timeline { grid-template-columns: 1fr; }
            .executive-summary { padding: 2rem; }
            .action-plan { padding: 2rem; }
        }

        @media (max-width: 480px) {
            .hero { padding: 2rem 1rem; }
            .hero h1 { font-size: 2rem; }
            .hero-subtitle { font-size: 1rem; }
            .content { padding: 1rem 0.5rem; }
            .section h2 { font-size: 1.5rem; }
            .failure-point-card { padding: 1.5rem; }
            .executive-summary { padding: 1.5rem; }
            .action-plan { padding: 1.5rem; }
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            html, body {
                max-width: 100vw;
                overflow-x: hidden;
            }
            img, video {
                max-width: 100%;
                height: auto;
            }
            .container, .article-container {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }
            .hero {
                min-height: 40vh;
                height: auto;
                padding: 2rem 0.5rem;
                margin-top: 60px;
            }
            .footer-main, .footer-grid {
                flex-direction: column !important;
                display: flex !important;
                gap: 1.5rem;
            }
            .footer-section {
                width: 100% !important;
                min-width: unset !important;
            }
            .footer-social {
                margin-top: 1.5rem;
                text-align: center;
            }
            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
            }
            .cta-section {
                padding: 2rem 1rem;
            }
        }
        @media (max-width: 480px) {
            .container, .article-container {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
            }
            .hero {
                padding: 1rem 0.25rem;
            }
        }
